DataSource for Entity Framework in WPF
C1.LiveLinq.Collections Namespace / IndexedCollection<T> Class / AddRange Method
The collection whose elements should be added to the end of the IndexedCollection<T>

In This Topic
    AddRange Method
    In This Topic
    Adds the elements of the specified collection to the end of the IndexedCollection<T>
    Syntax
    'Declaration
     
    Public Sub AddRange( _
       ByVal items As IEnumerable(Of T) _
    ) 
    public void AddRange( 
       IEnumerable<T> items
    )

    Parameters

    items
    The collection whose elements should be added to the end of the IndexedCollection<T>
    See Also